Index
第一個欄位至關重要它會影響資料統計值結果,Index
一般建立在查詢條件的欄位
每個
Index
都擁有自己的B+ tree
.
此文同步發布在石頭Blog資料庫索引深入淺出(一)
B+ tree
是一種資料結構這個資料結構被Index
拿來使用,關於B+ tree
網路上有很多資源可再自行尋找,所以我們來談談為什麼DataBase
會使用B+ tree
在Wiki講述B+ tree
有其中一段
B+ tree
是能夠保持資料穩定有序,其插入與修改擁有較穩定的對數時間複雜度。B+ tree
元素由下而上插入,通過最大化在每個內部節點內的子節點的數目減少樹的高度,平衡操作不經常發生,而且效率增加了。這種價值得以確立通常需要每個節點在次級儲存中占據完整的磁碟塊或近似的大小。
簡白來說B+ tree
有一個特性是他會把資料存在子頁中並且透過連結把每個子頁串聯起來,提高他的穩定度.
B+ tree
資料結構如下圖,這個資料結在在範圍查詢時較B tree
來的更穩定
Index真正在使用B+ tree
儲存類似於下圖
此圖來自(Pro SQL Server Internals, 2nd edition)
建立太多Index
,小心降低新增、更新效率,Index
可以加快查詢速度,是Index
以空間換取時間。
基本上它使用的資源如下:
Index
都會建立一顆 b+ tree
b+ tree
所以當你Index
越多時,你需要維護的Index
越多(代表需要更多資源來維護)
每個資料表只能有一個Clustered index
,資料表會依照Clustered index
方式存放排列資料,Clustered Index
跟資料一起放置在Left
子頁層
Cluster index
好比書籍頁碼目錄。每本書只能有一個目錄
建立Clustered Index
欄位有幾個重點
每個資料表能有許多NonClustered Index
,像每本書可以有很多種附錄
NonClustered Index
按照Key Column
排序,
NonClustered Index
(index page)上所有分葉節點存放指標,如果資料表已存在Clustered Index
(KeyID
),那麼該指標將會指Clustered Index
,如不存在將指向資料真實存放位置(RID
)
this is a very important point to remember. Nonclustered indexes do not store information about physical row location when a table has a clustered index. They store the value of the clustered index key instead.
上面簡單來說如果NonClustered Index
沒有包含所有要查詢欄位
Clustered Index
,會執行Key Lookup
Clustered Index
,會執行RID Lookup
這裡的
RID
是指向真實資料位子RowID
資料表沒有Clustered Index
且使用Index
所有查詢欄位不包含在Converting Index
中就會透過RID Lookup
查找確切Page上的Row(藉由Row-Id
)
RID Key的大小8 byte
lookup
會消耗Disk I/O
,所以消耗成本相對會比較大.
沒有
Clustered Index
的資料表我們稱為Heap
資料表
NonClustered Index
中會存放此Row在Clustered Index
相對位置,假如單單靠搜尋Non-Clustered Index
沒有辦法滿足所有查詢需要資料就會去Key Lookup
(by Clustered key)回找Clustered Index
取出相對應的資料.
我們先準備10000筆樣本資料
CREATE TABLE T(
Id INT identity(1,1),
UserId INT,
UserGroup INT
)
INSERT INTO T (UserId,UserGroup)
SELECT TOP 10000 1.0 + floor(10000 * RAND(convert(varbinary, newid()))),
(1.0 + floor(10000 * RAND(convert(varbinary, newid())))/1000)+1
FROM sys.all_columns t1 CROSS JOIN sys.all_columns t2
建立完資料後我們利用下面條件來查找資料.
SELECT *
FROM dbo.T
WHERE id = 10000
因為沒有建立Index
,導致我明明只需要撈取一筆資料,但資料庫卻全表掃描
我們在表中建立了一個NonClustered Index
,並利用相同查詢語法查詢資料
CREATE NONCLUSTERED INDEX IX_T_Id on dbo.T(
id
)
建立完NonClustered Index
後從原本的全表掃描變成RID Lookup
和Index Seek
,因為NonClustered Index
的B+ Tree
沒有包含所有需要撈取的資料.所以透過RID
回去Heap
資料表查找出所需要的欄位
RID Lookup
在執行計畫中呈現如下圖,
我們在T
資料表中建立一個Clustered Index
,並且執行相同查詢
CREATE CLUSTERED INDEX CIX_T_UserId on dbo.T(
UserId
)
能看到執行計畫的不同了,已經透過Key Lookup
回去查找資料,原因是目前資料表已經有Clustered Index
但此查詢使用條件使用NonClustered Index
所以導致需要Lookup
回去Clustered Index
的B+ Tree
查找資料